home *** CD-ROM | disk | FTP | other *** search
/ F1 Licenseware / F1 Licenseware - Volume 1.iso / disks / 003.dms / 003.adf / EXAMPLE_PROGRAMS / example9.AMOS / example9.amosSourceCode
AMOS Source Code  |  1993-02-25  |  521b  |  37 lines

  1. Rem EXAMPLE9.Amos
  2. '
  3. '
  4. Rem hide mouse 
  5. Hide 
  6. '
  7. '
  8. Rem load picture 
  9. Load Iff "df0:Pics/sonic.iff",0
  10. '
  11. '
  12. Rem LOAD a tracker music module into bank 5
  13. Track Load "df0:music/mod.fun",5
  14. '
  15. '
  16. Rem Play the mod 
  17. Track Play 5
  18. '
  19. '
  20. Rem make the mod loop back to the beginning once it reaches the end
  21. Track Loop On 
  22. '
  23. '
  24. Rem CLEAR the KEYboard buffer from any previous key presses
  25. Clear Key 
  26. '
  27. '
  28. Rem WAIT for a KEY press, any key
  29. Wait Key 
  30. '
  31. '
  32. Rem STOP the music 
  33. Track Stop 
  34. '
  35. '
  36. Rem LIST the contents of all used memory BANKs 
  37. List Bank